home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Poly1.h < prev    next >
C/C++ Source or Header  |  1999-01-14  |  886b  |  26 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Poly1H
  3. #define Poly1H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include "Obutton1.h"
  10. #include <vcl\ExtCtrls.hpp>
  11.  
  12. //---------------------------------------------------------------------------
  13. class TForm1 : public TForm
  14. {
  15. __published:    // IDE-verwaltete Komponenten
  16.     void __fastcall FormCreate(TObject *Sender);
  17. private:    // Benutzer-Deklarationen
  18.   TOButton *Obutton1;
  19. public:        // Benutzer-Deklarationen
  20.     __fastcall TForm1(TComponent* Owner);
  21. };
  22. //---------------------------------------------------------------------------
  23. extern TForm1 *Form1;
  24. //---------------------------------------------------------------------------
  25. #endif
  26.